home *** CD-ROM | disk | FTP | other *** search
- package sun.misc;
-
- import java.io.IOException;
- import java.io.InputStream;
- import java.net.URL;
- import java.net.URLConnection;
- import sun.misc.URLClassPath.Loader;
-
- final class URLClassPath$Loader$1 extends Resource {
- // $FF: synthetic field
- final String val$name;
- // $FF: synthetic field
- final URL val$url;
- // $FF: synthetic field
- final URLConnection val$uc;
- // $FF: synthetic field
- final URLClassPath.Loader this$0;
-
- URLClassPath$Loader$1(URLClassPath.Loader var1, String var2, URL var3, URLConnection var4) {
- this.this$0 = var1;
- this.val$name = var2;
- this.val$url = var3;
- this.val$uc = var4;
- }
-
- public String getName() {
- return this.val$name;
- }
-
- public URL getURL() {
- return this.val$url;
- }
-
- public URL getCodeSourceURL() {
- return Loader.access$200(this.this$0);
- }
-
- public InputStream getInputStream() throws IOException {
- return this.val$uc.getInputStream();
- }
-
- public int getContentLength() throws IOException {
- return this.val$uc.getContentLength();
- }
- }
-